runtime.typePointers.elem (field)
18 uses
runtime (current package)
mbitmap.go#L126: elem uintptr
mbitmap.go#L184: return typePointers{elem: addr, addr: addr, mask: span.heapBitsSmallForAddr(addr)}
mbitmap.go#L201: return typePointers{elem: addr, addr: addr, mask: readUintptr(gcdata), typ: typ}
mbitmap.go#L224: return typePointers{elem: addr, addr: addr, mask: readUintptr(gcdata), typ: typ}
mbitmap.go#L285: if tp.addr+goarch.PtrSize*ptrBits >= tp.elem+tp.typ.PtrBytes {
mbitmap.go#L286: tp.elem += tp.typ.Size_
mbitmap.go#L287: tp.addr = tp.elem
mbitmap.go#L298: tp.mask = readUintptr(addb(tp.typ.GCData, (tp.addr-tp.elem)/goarch.PtrSize/8))
mbitmap.go#L336: oldelem := tp.elem
mbitmap.go#L337: tp.elem += (tp.addr - tp.elem + n) / tp.typ.Size_ * tp.typ.Size_
mbitmap.go#L338: tp.addr = tp.elem + alignDown(n-(tp.elem-oldelem), ptrBits*goarch.PtrSize)
mbitmap.go#L343: if tp.addr-tp.elem >= tp.typ.PtrBytes {
mbitmap.go#L346: tp.elem += tp.typ.Size_
mbitmap.go#L347: tp.addr = tp.elem
mbitmap.go#L357: tp.mask = readUintptr(addb(tp.typ.GCData, (tp.addr-tp.elem)/goarch.PtrSize/8))
mbitmap.go#L963: print("runtime: tp.elem=", hex(tp.elem), " tp.typ=", unsafe.Pointer(tp.typ), "\n")
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |